home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1999 January / Designer's Club 1999 January.iso / mac / Idea Source® / ink1.dir / 00029_backon.ls < prev    next >
Encoding:
Text File  |  1998-11-17  |  424 b   |  22 lines

  1. on mouseEnter me
  2.   set the visible of sprite (the spriteNum of me - 6) to 0
  3.   updateStage()
  4. end
  5.  
  6. on mouseLeave me
  7.   set the visible of sprite (the spriteNum of me - 6) to 1
  8.   updateStage()
  9. end
  10.  
  11. on mouseDown me
  12.   set the visible of sprite (the spriteNum of me - 11) to 0
  13.   updateStage()
  14. end
  15.  
  16. on mouseUp me
  17.   puppetSound(2, "button")
  18.   set the visible of sprite (the spriteNum of me - 11) to 1
  19.   updateStage()
  20.   go("on2")
  21. end
  22.